home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
vdayadjust.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
417b
|
12 lines
/*
This view sums all the day adjustments. The outer join is to ensure that there is a record for the vcbcount view to process.
*/
create or replace view vdayadjust as
select sum(total_adjust) day_adjust,
acctdaytotals.acctday_total_seq_num
from adjustment ,
acctdaytotals
where adjustment.acctday_total_seq_num (+) = acctdaytotals.acctday_total_seq_num
group by acctdaytotals.acctday_total_seq_num;